home *** CD-ROM | disk | FTP | other *** search
- #
- # This script was written by David Maciejak <david dot maciejak at kyxar dot fr>
- #
- # Ref: James Bercegay of the GulfTech Security Research Team
- # This script is released under the GNU GPLv2
-
- if(description)
- {
- script_id(14644);
- # script_bugtraq_id(11071);
- script_version("$Revision: 1.7 $");
- script_name(english:"Xedus detection");
-
-
- desc["english"] = "
- The remote host runs Xedus Peer to Peer webserver, it provides
- the ability to share files, music, and any other media, as well
- as create robust and dynamic web sites, which can feature
- database access, file system access, with full .net support.
-
- Risk factor : Low";
- script_description(english:desc["english"]);
-
- script_summary(english:"Checks for presence of Xedus");
- script_category(ACT_GATHER_INFO);
- script_copyright(english:"This script is Copyright (C) 2004 David Maciejak");
-
- script_family(english:"Peer-To-Peer File Sharing");
- script_require_ports("Services/www", 4274);
- exit(0);
- }
-
-
- include("http_func.inc");
- include("http_keepalive.inc");
-
- exit(0); # FP-prone
- port = 4274;
- if(!get_port_state(port))exit(0);
-
- soc = http_open_socket(port);
- if(soc)
- {
- buf = http_get(item:"/testgetrequest.x?param='free%20nessus'", port:port);
- send(socket:soc, data:buf);
- rep = http_recv(socket:soc);
- if(egrep(pattern:"free nessus", string:rep))
- {
- set_kb_item(name:string("xedus/",port,"/running"),value: TRUE);
- security_note(port);
- }
- http_close_socket(soc);
- }
- exit(0);
-